POST
https://api.applivery.io/v1/upload/logo/logo
curl -X POST "https://api.applivery.io/v1/upload/logo/logo" \
-H "Authorization: Bearer <YOUR_API_KEY>"const response = await fetch("https://api.applivery.io/v1/upload/logo/logo", {
method: "POST",
headers: {
Authorization: "Bearer <YOUR_API_KEY>",
},
});
const data = await response.json();import requests
response = requests.post(
"https://api.applivery.io/v1/upload/logo/logo",
headers={"Authorization": "Bearer <YOUR_API_KEY>"},
)
data = response.json()Request
Send your API key in the request header
authorization
Example:
Authorization: Bearer <token>
Responses
200 Response
application/json
status
boolean
optional
data
object
optional
id
string
optional
url
string
optional
{
"status": true,
"data": {
"id": "string",
"url": "string"
}
}
400 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 5006,
"message": "No File Found in request"
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}